home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 5 / CD-ROM Today - The Disc (Issue 5)(November 1994).ISO / mac / Mac shareware / Education / RLaB / examples / fun_plot.r < prev    next >
Text File  |  1994-09-21  |  337b  |  17 lines

  1. // Example plot
  2.  
  3. x = (0:10:.05)';
  4. y = x.^2;
  5.  
  6. pstart ();
  7. plfont(2);  // Roman font
  8. plwid(2);   // line width
  9.  
  10. ptitle ("#frJust For Fun, #fiJust For Fun, #fsJust For Fun");
  11. xlabel ("#ga");            // this is alpha
  12. ylabel ("#gb=#ga#u2#d");   // alpha = beta^2
  13. plot ([x,y]);
  14.  
  15. //send Postscript output to file fun.ps
  16. //plprint ("fun.ps");
  17.